/* ===== SOUL PAWS — Global CSS Design System ===== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --color-lavender-blush: #E8C9D3;
  --color-sage-green: #C7D8C4;
  --color-warm-sand: #E7C78F;
  --color-soft-coral: #E4A7A0;
  --color-dusty-rose: #D9A3B2;
  --color-cream: #F7F3EE;
  --color-charcoal: #2F2F2F;

  /* Extended palette */
  --color-white: #FFFFFF;
  --color-lavender-light: #f3e2e9;
  --color-sage-light: #dce8da;
  --color-sand-light: #f2ddb5;
  --color-dusty-rose-dark: #c48a9c;
  --color-charcoal-light: #555555;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 50px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(47, 47, 47, 0.06);
  --shadow-card: 0 8px 32px rgba(47, 47, 47, 0.08);
  --shadow-elevated: 0 16px 48px rgba(47, 47, 47, 0.12);
  --shadow-glow-rose: 0 0 40px rgba(217, 163, 178, 0.3);
  --shadow-glow-sage: 0 0 40px rgba(199, 216, 196, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* Nav height */
  --nav-height: 72px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-padding {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-charcoal-light);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-base);
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-dusty-rose), var(--color-dusty-rose-dark));
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(217, 163, 178, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 163, 178, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-charcoal);
  border: 2px solid var(--color-lavender-blush);
}

.btn-secondary:hover {
  background: var(--color-lavender-light);
  border-color: var(--color-dusty-rose);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===================================================================
   1. NAVIGATION
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: rgba(247, 243, 238, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
  background: rgba(247, 243, 238, 0.95);
  box-shadow: 0 2px 20px rgba(47, 47, 47, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  z-index: 1001;
}

.nav-logo .paw-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 6px rgba(217, 163, 178, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  transition: color var(--transition-base);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-dusty-rose);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-links a:not(.btn):hover {
  color: var(--color-dusty-rose-dark);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   2. HERO SECTION
   =================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../Assets/Image/Background.png') center/cover no-repeat;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: var(--space-lg) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dusty-rose-dark);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(217, 163, 178, 0.3);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--color-dusty-rose), var(--color-soft-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-charcoal-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* Glow ring behind hero image */
.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, rgba(232, 201, 211, 0.4), rgba(199, 216, 196, 0.2), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* ===================================================================
   3. WHY SOUL PAWS — Differentiators
   =================================================================== */
.differentiators {
  background: var(--color-white);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(232, 201, 211, 0.2);
  border-bottom: 1px solid rgba(232, 201, 211, 0.2);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
}

.diff-item {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.diff-item:hover {
  background: var(--color-cream);
  transform: translateY(-4px);
}

.diff-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
  display: block;
  filter: drop-shadow(0 2px 8px rgba(217, 163, 178, 0.3));
}

.diff-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.4;
}

/* ===================================================================
   4. SERVICES
   =================================================================== */
.services {
  background: linear-gradient(180deg, var(--color-cream), var(--color-lavender-light) 80%, var(--color-cream));
  position: relative;
}

/* Botanical decoration */
.services::before {
  content: '🌿';
  position: absolute;
  top: 60px;
  right: 40px;
  font-size: 3rem;
  opacity: 0.15;
  transform: rotate(25deg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(232, 201, 211, 0.15);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.service-card.featured {
  border: 2px solid var(--color-dusty-rose);
  box-shadow: var(--shadow-card), var(--shadow-glow-rose);
}

.service-card.featured:hover {
  box-shadow: var(--shadow-elevated), 0 0 60px rgba(217, 163, 178, 0.35);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--color-dusty-rose), var(--color-soft-coral));
  color: var(--color-white);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(217, 163, 178, 0.4);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.service-tagline {
  font-size: 0.92rem;
  color: var(--color-charcoal-light);
  font-style: italic;
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.service-includes-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-dusty-rose-dark);
  margin-bottom: 0.5rem;
}

.service-list {
  margin-bottom: var(--space-sm);
}

.service-list li {
  font-size: 0.88rem;
  padding: 0.3rem 0;
  color: var(--color-charcoal);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.service-list li::before {
  content: '✦';
  color: var(--color-dusty-rose);
  font-size: 0.65rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.service-note {
  font-size: 0.85rem;
  color: var(--color-charcoal-light);
  font-style: italic;
  padding-top: var(--space-xs);
  border-top: 1px solid rgba(232, 201, 211, 0.3);
  margin-top: auto;
  margin-bottom: var(--space-sm);
}

.service-footer {
  padding: 0 var(--space-md) var(--space-md);
  margin-top: auto;
}

/* ===================================================================
   5. PRICING
   =================================================================== */
.pricing {
  background: var(--color-white);
  position: relative;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal);
  background: var(--color-cream);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.pricing-tab:hover {
  background: var(--color-lavender-light);
}

.pricing-tab.active {
  background: linear-gradient(135deg, var(--color-dusty-rose), var(--color-soft-coral));
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(217, 163, 178, 0.35);
}

.pricing-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.pricing-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-xl);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  min-width: 600px;
}

.price-table thead th {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: left;
  background: linear-gradient(135deg, var(--color-lavender-light), var(--color-cream));
  color: var(--color-charcoal);
  border-bottom: 2px solid var(--color-lavender-blush);
  white-space: nowrap;
}

.price-table thead th:not(:first-child) {
  text-align: center;
}

.price-table tbody td {
  padding: 0.875rem 1.25rem;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(232, 201, 211, 0.2);
  color: var(--color-charcoal);
}

.price-table tbody td:not(:first-child) {
  text-align: center;
  font-weight: 600;
  color: var(--color-dusty-rose-dark);
}

.price-table tbody tr:hover {
  background: rgba(232, 201, 211, 0.08);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

/* Add-ons */
.addons-section {
  margin-top: var(--space-lg);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.addon-item:hover {
  background: var(--color-lavender-light);
  border-color: var(--color-lavender-blush);
  transform: translateX(4px);
}

.addon-name {
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.addon-price {
  font-weight: 600;
  color: var(--color-dusty-rose-dark);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ===================================================================
   6. TESTIMONIALS
   =================================================================== */
.testimonials {
  background: linear-gradient(180deg, var(--color-cream), var(--color-sage-light), var(--color-cream));
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
  border: 1px solid rgba(199, 216, 196, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-lavender-blush);
  line-height: 1;
  opacity: 0.6;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
  color: var(--color-warm-sand);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, var(--color-lavender-blush), var(--color-sage-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-info .name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-charcoal);
}

.testimonial-info .location {
  font-size: 0.82rem;
  color: var(--color-charcoal-light);
}

/* ===================================================================
   7. ABOUT
   =================================================================== */
.about {
  background: var(--color-cream);
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--color-lavender-blush);
  border-radius: calc(var(--radius-lg) + 6px);
  z-index: -1;
  opacity: 0.5;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-charcoal-light);
  margin-bottom: var(--space-md);
}

.about-text:first-of-type {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.7;
}

.about-highlight {
  background: linear-gradient(120deg, rgba(199, 216, 196, 0.3) 0%, rgba(232, 201, 211, 0.3) 100%);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-dusty-rose);
  margin-top: var(--space-md);
}

.about-highlight p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.6;
}

/* ===================================================================
   8. BOOK NOW CTA
   =================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-sage-green) 0%, var(--color-sage-light) 30%, var(--color-lavender-light) 70%, var(--color-lavender-blush) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-circle);
}

.cta-section::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.cta-section::after {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.cta-text {
  font-size: 1.1rem;
  color: var(--color-charcoal-light);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.cta-paws {
  font-size: 2rem;
  margin-top: var(--space-lg);
  opacity: 0.3;
  letter-spacing: 1rem;
}

/* ===================================================================
   9. FOOTER
   =================================================================== */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.footer-logo .paw-icon {
  color: var(--color-dusty-rose);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--color-dusty-rose);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0;
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--color-dusty-rose);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--color-dusty-rose);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image-wrapper img {
    max-width: 400px;
    aspect-ratio: 1/1;
  }

  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-image-wrapper img {
    aspect-ratio: 1/1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(247, 243, 238, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: calc(var(--nav-height) + 2rem) 2rem;
    gap: 1.5rem;
    transition: right var(--transition-base);
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-overlay.visible {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: var(--space-xl);
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-padding {
    padding: var(--space-2xl) 0;
  }

  .pricing-tabs {
    gap: 0.3rem;
  }

  .pricing-tab {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .diff-item {
    padding: var(--space-sm) var(--space-xs);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
  }
}

/* ===================================================================
   VISUAL REDESIGN — Logo, Decorations, Sketch Frame, Nav Button
   =================================================================== */

/* --- Logo image --- */
.logo-img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(217, 163, 178, 0.3));
}

/* --- Nav Book Now button override (sage green) --- */
.navbar .btn-primary {
  background: rgba(165, 210, 170, 0.18);
  color: #3a6644;
  border: 1.5px solid rgba(120, 180, 130, 0.65);
  box-shadow: none;
}
.navbar .btn-primary:hover {
  background: rgba(165, 210, 170, 0.32);
  box-shadow: none;
  transform: translateY(-1px);
}

/* --- Botanical line-art decorations --- */
.hero-botanical {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.hero-botanical--tl {
  top: -20px;
  left: -20px;
}

.hero-botanical--bl {
  bottom: -10px;
  left: 0;
}

.hero-botanical--mr {
  bottom: 40px;
  right: 46%;
  opacity: 0.55;
}

/* --- Floating ovals --- */
.hero-oval {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* --- Sketch frame around hero image --- */
.hero-sketch-frame {
  position: absolute;
  inset: -18px 14px 18px -14px;
  border: 1.5px solid rgba(120, 150, 128, 0.4);
  border-radius: 36px;
  pointer-events: none;
  z-index: 0;
}

.hero-image-wrapper img {
  position: relative;
  z-index: 1;
}

.hero-image-glow {
  z-index: 0;
}
